home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / Shells / pdksh_920711.lha / sh / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-11  |  122 b   |  9 lines

  1. /*
  2.  * area-based allocation built on malloc/free
  3.  */
  4.  
  5. typedef struct Area {
  6.     struct Block *free;    /* free list */
  7. } Area;
  8.  
  9.